From efff8d0dbfc35dccb8a4314e0359d838a6065792 Mon Sep 17 00:00:00 2001 From: Dave Love Date: Tue, 30 Jan 2001 10:07:03 +0000 Subject: [PATCH] (Fbyte_code) : Add BEFORE_POTENTIAL_GC and AFTER_POTENTIAL_GC. --- src/bytecode.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bytecode.c b/src/bytecode.c index 7cd38a0fe2e..f2394556e2b 100644 --- a/src/bytecode.c +++ b/src/bytecode.c @@ -1193,8 +1193,10 @@ If the third argument is incorrect, Emacs may crash.") case Bgeq: { Lisp_Object v1; + BEFORE_POTENTIAL_GC (); v1 = POP; TOP = Fgeq (TOP, v1); + AFTER_POTENTIAL_GC (); break; } -- 2.30.2